home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Present…nuary (Partner) - Disc 2 / The Apple Reference and Presentations Library (Disc 2)(January 1994).iso / Diehl Graphsoft / German / MiniCad / MiniCad-PPC / MiniCad 5.0.1-D / MiniCad 5.0.1-D.rsrc / STR#_7012.txt < prev    next >
Encoding:
Text File  |  1994-10-06  |  677 b   |  49 lines

  1. Abs(v);
  2.  
  3. Returns the absolute value of v
  4.  
  5. Sqr(v);
  6.  
  7. Returns the square of v
  8.  
  9. Sin(v) : REAL;
  10.  
  11. Returns the sine of v
  12.  
  13. Cos(v) : REAL;
  14.  
  15. Returns the cosine of v
  16.  
  17. Exp(v) : REAL;
  18.  
  19. Returns a real value that is the natural exponential of a v
  20.  
  21. Ln(v) : REAL;
  22.  
  23. Returns a real value that is the natural logarithm of v
  24.  
  25. Sqrt(v) : REAL;
  26.  
  27. Returns the square root of v
  28.  
  29. ArcTan(v) : REAL;
  30.  
  31. Returns the arctangent of v in radians
  32.  
  33. ArcSin(v) : REAL;
  34.  
  35. Returns the arcsine of v in radians
  36.  
  37. ArcCos(v) : REAL;
  38.  
  39. Returns the arccosine of v in radians
  40.  
  41. Rad2Deg(RadianValue : REAL) : REAL;
  42.  
  43. Converts radians into decimal degrees
  44.  
  45. Deg2Rad(DegreeValue : REAL) : REAL;
  46.  
  47. Converts decimal degrees into radians
  48.  
  49.